![]() ![]() |
13.2:H213101 If necessary, add an explanation for each link content.Improper designThe title character was not used in the super link for text explanation. Improper design:
<P>information on all related books are provided below:
<DL>
<DT>ˇy.com strategy, regulation and designˇz</DT>
<DD>
<A href="com.jsp">Webpage</A>/<A href="com.doc">Word file</A> /
<A href="com.pdf">PDF file</A> / <A href="com.txt">TXT file</A>
</DD>
<DT>ˇythe second bookˇz</DT>
<DD>
<A href="book.jsp">Webpage</A> / <A href="book.doc">Word file</A> /
<A href="book.pdf">PDF file</A> / <A href="book.txt">TXT file</A>
</DD>
<DT>ˇythe third bookˇz</DT>
<DD>
<A href="book.jsp">Webpage</A> / <A href="book.doc">Word file</A> /
<A href="book.pdf">PDF file</A> / <A href="book.txt">TXT file</A>
</DD>
</DL>
</P>
End of example Proper demonstrationUse the title character in the super link to provide text explanation. Proper example:
<P>information on all related books are provided below:
<DL>
<DT>ˇy.com strategy, regulation and designˇz</DT>
<DD>
<A href="com.jsp" title="ˇy.com strategy, regulation and designˇzWebpage">Webpage</A> /
<A href="com.doc" title="ˇy.com strategy, regulation and designˇzWord file">Word file</A> /
<A href="com.pdf" title="ˇy.com strategy, regulation and designˇzPDF file">PDF file</A> /
<A href="com.txt" title="ˇy.com strategy, regulation and designˇzTXT file">TXT file</A>
</DD>
<DT>ˇythe second bookˇz</DT>
<DD>
<A href="book.jsp" title="ˇythe second bookˇzWebpage">Webpage</A> /
<A href="book.doc" title="ˇythe second bookˇzWord file">Word file</A> /
<A href="book.pdf" title="ˇythe second bookˇzPDF file">PDF file</A> /
<A href="book.txt" title="ˇythe second bookˇzTXT file">TXT file</A>
</DD>
<DT>ˇythe third bookˇz</DT>
<DD>
<A href="book.jsp" title="ˇythe third bookˇzWebpage">Webpage</A> /
<A href="book.doc" title="ˇythe third bookˇzWord file">Word file</A> /
<A href="book.pdf" title="ˇythe third bookˇzPDF file">PDF file</A> /
<A href="book.txt" title="ˇythe third bookˇzTXT file">TXT file</A>
</DD>
</DL>
</P>
End of example |